@media (min-width: 768px){
.zpform-outer {
display: flex;
flex-wrap: wrap;
}
.zpform-outer li {
flex: 1 1 45%; /* Adjust width as needed */
display: flex;
justify-content: flex-start; /* Default alignment */
}
.zpform-field-container.zpform-button {
display: flex;
align-items: center; /* Optional: Align items vertically */
justify-content: center; /* Optional: Center content horizontally */
margin-top:20px;
}
.zpform-label-container,.zpform-field-container {
max-inline-size:90% !important;
}
.zpform-outer li:nth-last-child(-n+2) {
flex: 1 1 100%;
}
.zpform-outer li:nth-last-child(3) {
max-width:50%;
}
}